home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / powervww / compile.h < prev    next >
C/C++ Source or Header  |  1998-01-05  |  1KB  |  28 lines

  1. //  ____________________________________________________
  2. // |                                                    |
  3. // |  Project:     POWER VIEW IDE                       |
  4. // |  File:        COMPILE.H                            |
  5. // |  Compiler:    WPP386 (10.6)                        |
  6. // |                                                    |
  7. // |  Subject:     Compile & Link interface             |
  8. // |                                                    |
  9. // |  Author:      Emil Dotchevski                      |
  10. // |____________________________________________________|
  11. //
  12. // E-mail: zajo@geocities.com
  13. // URL:    http://www.geocities.com/SiliconValley/Bay/3577
  14.  
  15. void start_of_make( char *_make_title );
  16. void make_status( char *current_file, char *target_file, char *status );
  17. void end_of_make( int show_log );
  18. char *get_local_options( char *buffer, char *file );
  19. boolean target_valid( char *target, char *source );
  20. boolean need_make( char *filename );
  21. int exec( uint flags, char *program, char *params, char *redirect, void *history_id=NULL );
  22. void watcom_command_line( char *result, char *file );
  23. void watcom_link_command_line( char *result );
  24. int exec_watcom( char *file );
  25. int exec_linker( char *file );
  26. boolean compile( void );
  27. boolean link( void );
  28.